From c60a989499371942c4cae0905c9db1fa41b75f6b Mon Sep 17 00:00:00 2001 From: dgellow Date: Wed, 25 Jan 2017 22:59:32 +0100 Subject: [PATCH] remove newline after stacktrace --- src/cargo/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cargo/lib.rs b/src/cargo/lib.rs index 539fd8c34..f0a93022a 100644 --- a/src/cargo/lib.rs +++ b/src/cargo/lib.rs @@ -204,7 +204,7 @@ fn handle_cause(mut cargo_err: &CargoError, shell: &mut MultiShell) -> bool { fn print(error: String, shell: &mut MultiShell) { let _ = shell.err().say("\nCaused by:", BLACK); - let _ = shell.err().say(format!(" {}\n", error), BLACK); + let _ = shell.err().say(format!(" {}", error), BLACK); } } -- 2.30.2